* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  color: #1a1a1a;
  line-height: 1.7;
}

/* HERO BLUE DIV */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 80px 8%;
  border-radius: 0 0 60px 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.9;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
  text-align: center;
}

/* YELLOW HEADINGS */
.container h2 {
  color: #facc15;
  font-size: 32px;
  margin-bottom: 25px;
}

/* PARAGRAPH */
.main-para {
  max-width: 800px;
  margin: auto;
  color: #4b5563;
}

/* SPEC LIST */
.specs {
  list-style: none;
  max-width: 500px;
  margin: auto;
}

.specs li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* CTA BLUE DIV */
.cta {
  background: #2563eb;
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 40px;
  margin: 40px 20px;
}

.cta h2 {
  color: #facc15; /* YELLOW HEADING */
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-btn,
.call-btn {
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: white;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #33b5e5;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
